b87077bd3e5e9c35fe584c96f48c0e24739d0a97,textdb/textdb-perftest/src/main/java/edu/uci/ics/textdb/perftest/fuzzytokenmatcher/FuzzyTokenMatcherPerformanceTest.java,FuzzyTokenMatcherPerformanceTest,runTest,#String#List#,72
Before Change
if (file.getName().startsWith(".")) {
continue;
}
DataStore dataStore = new DataStore(PerfTestUtils.getIndexPath(file.getName()),
MedlineIndexWriter.SCHEMA_MEDLINE);
PerfTestUtils.createFile(PerfTestUtils.getResultPath(csvFile), HEADER);
fileWriter = new FileWriter(PerfTestUtils.getResultPath(csvFile), true);
After Change
if (file.getName().startsWith(".")) {
continue;
}
String tableName = file.getName().replace(".txt", "");
PerfTestUtils.createFile(PerfTestUtils.getResultPath(csvFile), HEADER);
fileWriter = new FileWriter(PerfTestUtils.getResultPath(csvFile), true);